home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 February / Software of the Month Club 1996 February.iso / pc / dos / dtp / ecpage / download.doc < prev    next >
Encoding:
Text File  |  1996-01-08  |  2.1 KB  |  60 lines

  1. DOWNLOAD.DOC
  2.  
  3. This is a very brief orientation to downloading softfonts to a printer.
  4.  
  5. There are 3 steps to downloading a soft font.
  6.  
  7. 1)  Send the PCL command that identifies the softfont:   <ESC>*c#D
  8.     substitute a number for #, ie 1 to start:  <ESC>*c1D
  9.     Save these into a file, I suggest FONT1.DAT.  If you use MS-DOS's
  10.     EDITOR to write the file, use CTRL+P then ALT+027 on the numeric keypad
  11.     for the ESCAPE character.  When you copy this file to the printer use
  12.     the /B  (Binary) switch, ie, COPY /B FONT1.DAT PRN:
  13.  
  14. 2)  Now copy the desired font itself, this is the font you are using as
  15.     downloaded font 1 (in this example) ie, LOGO.FNT or whatever name
  16.     you have given it or it is called. Here again use the COPY /B format,
  17.     ie, :  COPY /B LOGO.FNT PRN:
  18.  
  19. 3)  Finally, send the PCL command that notifies the printer this font
  20.     download is complete and to make it a permanent font.  Use the
  21.     command:  <ESC>*c5F
  22.  
  23.     I suggest placing this in a file called PERM.DAT, creating it as you
  24.     did in #1 above.  Here also, use the COPY /B.
  25.  
  26.  
  27.     Consider placing these in a BATCH file to be called when you want to
  28.     D/L soft fonts.  Add as many as you need and have printer memory for.
  29.  
  30.     Sample DOWNLOAD.BAT to download 3 softfonts:
  31.  
  32.            @ECHO OFF
  33.            CLS
  34.            ECHO Loading Fonts...
  35.            COPY /B FONT1.DAT PRN:
  36.            COPY /B LOGO1.FNT PRN:
  37.            COPY /B PERM.DAT PRN:
  38.            COPY /B FONT2.DAT PRN:
  39.            COPY /B LOGO2.FNT PRN:
  40.            COPY /B PERM.DAT PRN:
  41.            COPY /B FONT3.DAT PRN:
  42.            COPY /B LOGO3.FNT PRN:
  43.            COPY /B PERM.DAT PRN:
  44.            CLS
  45.            ECHO Font Download Complete!
  46.  
  47.  
  48.     For your use I have included some sample files to use, called:
  49.  
  50.     FONT1.DAT For D/L font 1
  51.     FONT2.DAT For D/L font 2
  52.     FONT3.DAT For D/L font 3
  53.  
  54.     PERM.DAT To make font permanent.
  55.  
  56.     Note same PERM.DAT is used over and over - needs no changes.
  57.  
  58.     IMPORTANT:  If ECPage Font ID#26 is a Download #1 font, for example,
  59.                 make sure you download it as #1.
  60.